home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / GameCreators / Inform / library / parser.h < prev    next >
Encoding:
Text File  |  1997-03-15  |  937 b   |  39 lines

  1. ! ----------------------------------------------------------------------------
  2. !  PARSER:  Front end to parser.
  3. !
  4. !  Supplied for use with Inform 6
  5. !
  6. !  (c) Graham Nelson 1993, 1994, 1995, 1996, 1997
  7. !      but freely usable (see manuals)
  8. ! ----------------------------------------------------------------------------
  9.  
  10. Constant LibSerial  = "970918";
  11. Constant LibRelease = "6/7";
  12. Constant Grammar__Version = 2;
  13. IFNDEF VN_1610;
  14. Message fatalerror "*** Library 6/7 needs Inform v6.10 or later to work ***";
  15. ENDIF;
  16. System_file;
  17. Include "linklpa";
  18. Fake_Action LetGo;
  19. Fake_Action Receive;
  20. Fake_Action ThrownAt;
  21. Fake_Action Order;
  22. Fake_Action TheSame;
  23. Fake_Action PluralFound;
  24. Fake_Action ListMiscellany;
  25. Fake_Action Miscellany;
  26. Fake_Action Prompt;
  27. Fake_Action NotUnderstood;
  28. IFDEF NO_PLACES;
  29. Fake_Action Places;
  30. Fake_Action Objects;
  31. ENDIF;
  32. [ Main; InformLibrary.play(); ];
  33.  
  34. IFDEF USE_MODULES;
  35. Link "parserm";
  36. IFNOT;
  37. Include "parserm";
  38. ENDIF;
  39.